home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / mus / play / DeliSid4Amiga.lha / Install-DeliSid4Amiga < prev    next >
Text File  |  1999-06-27  |  3KB  |  87 lines

  1. ; $VER: Install_DeliSid4Amiga 1.01 (27.06.99) by Peter Mattsson
  2. ; ENGLISH -----------------------------
  3. (procedure english (
  4.     (set MSG_DESTINATION "Please direct me to the location of your DeliPlayers directory. (%s will be directly copied there)")
  5.     (set MSG_DESTINATION_HELP "The DeliPlayers directory is usually located in the DeliTracker_II directory, so first find where you have installed DeliTracker then click on the DeliPlayers directory.\n\n")
  6.     (set MSG_COPYING "Going to copy %s to %s.")
  7.     (set MSG_DELETING "Going to delete %s.")
  8.     (set MSG_DELISID "It seems like you have DeliSID installed. DeliSID must be moved to PlayerStore, because otherwise DeliSid4Amiga will not work.\n\nDo you want me to move DeliSID to PlayerStore?")
  9.     (set MSG_DELISID_HELP "DeliSID and DeliSid4Amiga don't work together because they both recognize the same type of modules (SIDs).\n\nThe recommended choice is Yes.")
  10.     (set MSG_DOC_QUESTION "Do you want to install the documentation?")
  11.     (set MSG_DOC_QUESTION_HELP "The documentation consists of one AmigaGuide file.")
  12.     (set MSG_DOC_DESTINATION "Where do you want the documentation to be installed? (%s will be directly copied there)")
  13.     (set MSG_DOC_DESTINATION_HELP "The preferred directory for documentation files is HELP:<language>, in this case the language is english.\n\n")
  14.     (set MSG_CONFIGURATION "Important!\n\nBefore you can use DeliSid4Amiga you have to configure it correctly! Read the documentation for more information!")
  15. ))
  16.  
  17. (english)
  18.  
  19. (complete 0)
  20.  
  21. (set destdir
  22.     (askdir (prompt (MSG_DESTINATION @app-name))
  23.             (help MSG_DESTINATION_HELP @askdir-help)
  24.             (default @default-dest)
  25.             (disk))
  26. )
  27.  
  28. (complete 12)
  29.  
  30. (set @default-dest destdir)
  31.  
  32. (copyfiles (prompt (MSG_COPYING @app-name @default-dest))
  33.             (help @copyfiles-help)
  34.             (source "DeliSid4Amiga")
  35.             (dest destdir)
  36. )
  37.  
  38. (complete 25)
  39.  
  40. (if (exists (tackon @default-dest "DeliSid"))
  41.     (set move_delisid (askbool (prompt (MSG_DELISID))
  42.                        (help MSG_DELISID_HELP)
  43.                        (default 1)))
  44. )
  45.  
  46. (complete 37)
  47.  
  48. (if (= move_delisid 1)(
  49.     (copyfiles (prompt (MSG_COPYING (tackon @default-dest "DeliSID") (tackon @default-dest "PlayerStore")))
  50.                (source (tackon @default-dest "DeliSid"))
  51.                (dest (tackon @default-dest "PlayerStore")))
  52.     (complete 50)
  53.     (delete (tackon @default-dest "DeliSID")
  54.             (prompt (MSG_DELETING (tackon @default-dest "DeliSID")))
  55.             (optional "force"))
  56.     )
  57. )
  58.  
  59. (complete 62)
  60.  
  61. (set copy_docs
  62.     (askbool (prompt (MSG_DOC_QUESTION))
  63.              (help MSG_DOC_QUESTION_HELP)
  64.              (default 1))
  65. )
  66.  
  67. (complete 75)
  68.  
  69. (if (= copy_docs 1) (
  70.     (set destdir
  71.         (askdir (prompt (MSG_DOC_DESTINATION "DeliSid4Amiga.guide"))
  72.                 (help MSG_DOC_DESTINATION_HELP @askdir-help)
  73.                 (default "HELP:english"))
  74.     )
  75.     (complete 87)
  76.     (copyfiles (prompt (MSG_Copying "DeliSid4Amiga.guide" destdir))
  77.                 (help @copyfiles-help)
  78.                 (source "DeliSid4Amiga.guide")
  79.                 (dest destdir)
  80.                 (infos)
  81.     )
  82. ))
  83.  
  84. (complete 100)
  85.  
  86. (message MSG_CONFIGURATION)
  87.